Page summary

https://ui.adsabs.harvard.edu/search/q=author:"^Penrose"&sort=date desc, bibcode desc&p_=0

Tested 2024-10-24 21:15:32 using Chrome 130.0.6723.58 (runtime settings).

SummaryWaterfall MetricsVideoFilmstrip CoachPageXrayCPU Third party
| Summary | | Download Video | Download Timeline Log | Download HAR | 

Summary

MetricValue
Page metrics
Performance Score58
Total Page Transfer Size3.3 MB
Requests135
Timing metrics
TTFB [median]425 ms
First Paint [median]950 ms
Fully Loaded [median]10.535 s
Google Web Vitals
TTFB [median]425 ms
First Contentful Paint (FCP) [median]950 ms
Largest Contentful Paint (LCP) [median]2.904 s
Cumulative Layout Shift (CLS) [median]0.65
Total Blocking Time [median]455 ms
Max Potential FID [median]245 ms
CPU metrics
CPU long tasks [median]4
CPU longest task duration250 ms
CPU last long task happens at4.822 s
Visual Metrics
First Visual Change [median]2.900 s
Speed Index [median]3.635 s
Visual Complete 85% [median]4.266 s
Visual Complete 99% [median]4.566 s
Last Visual Change [median]4.566 s
Screenshot of run 2

Timings Summary

Metricminmedianmeanmax
Visual Metrics
FirstVisualChange2.833 s2.900 s2.940 s3.133 s
LastVisualChange4.500 s4.566 s4.606 s4.800 s
SpeedIndex3.577 s3.635 s3.682 s3.887 s
VisualReadiness1.633 s1.667 s1.667 s1.700 s
VisualComplete854.200 s4.266 s4.300 s4.533 s
VisualComplete954.500 s4.566 s4.606 s4.800 s
VisualComplete994.500 s4.566 s4.606 s4.800 s
Google Web Vitals
Time To First Byte (TTFB)424 ms425 ms431 ms451 ms
Largest Contentful Paint (LCP)2.822 s2.904 s2.933 s3.136 s
First Contentful Paint (FCP)947 ms950 ms953 ms973 ms
Cumulative Layout Shift (CLS)0.64660.64660.64730.6484
More metrics
firstPaint947 ms950 ms953 ms973 ms
loadEventEnd3.073 s3.597 s3.510 s3.678 s
User Timing
sentry-tracing-init1.378 s1.381 s1.385 s1.403 s
CPU
Total Blocking Time447 ms455 ms456 ms461 ms
Max Potential FID240 ms245 ms246 ms250 ms
CPU long tasks 4444
CPU last long task happens at4.755 s4.822 s4.871 s5.060 s
| Waterfall | | Download HAR | 

Waterfall

Run 2 SpeedIndex median

| Video | Download | 

Video

Download video
| Filmstrip | 

Filmstrip

Use--filmstrip.showAll to show all filmstrips.

0 s
1 sDOM Content Loaded Time 946 msFirst Contentful Paint 947 ms
1.4 ssentry-tracing-init 1.379 s
2.9 sLCP <P> 2.877 sFirst Visual Change 2.900 s
3 sLayout Shift 0.00151 2.950 sLayout Shift 0.00119 2.967 s
3.1 sLayout Shift 0.00792 3.048 s
3.5 sLayout Shift 0.07853 3.451 s
3.6 sCPU Long Task duration 96 ms
3.7 sLayout Shift 0.46226 3.623 sPage Load Time 3.627 s
3.8 s
3.9 s
4 sCPU Long Task duration 237 ms
4.1 s
4.2 s
4.3 sLayout Shift 0.08359 4.234 sLayout Shift 0.00309 4.247 sCPU Long Task duration 250 msVisual Complete 85% 4.266 s
4.4 s
4.5 s
4.6 sLayout Shift 0.00854 4.551 sLast Visual Change 4.566 sVisual Complete 95% 4.566 sVisual Complete 99% 4.566 s
| Performance advice | Best practice advice | Privacy advice | Page info | Technologies | 

Coach

The coach helps you find performance problems on your web page using web performance best practice rules. And gives you advice on privacy and best practices. Tested using Coach-core version 8.0.2.

I am the coach

Coach score

Performance advice (58)

TitleAdviceScore
Avoid slowing down the critical rendering path (avoidRenderBlocking)The page has 4 blocking requests and 1 in body parser blocking (4 JavaScript and 1 CSS).60
Description: The critical rendering path is what the browser needs to do to start rendering the page. Every file requested inside of the head element will postpone the rendering of the page, because the browser need to do the request. Avoid loading JavaScript synchronously inside of the head (you should not need JavaScript to render the page), request files from the same domain as the main document (to avoid DNS lookups) and inline CSS for really fast rendering and a short rendering path.
Offenders:
  • https://www.google.com/recaptcha/api.js?render=6LcpTuUnAAAAAD6YCBdr_2-0b1AH8N6nXkYEG5G5
  • https://js.sentry-cdn.com/46062cbe0aeb7a3b2bb4c3a9b8cd1ac7.min.js
  • https://www.gstatic.com/recaptcha/releases/lqsTZ5beIbCkK4uGEGv9JmUR/recaptcha__en.js
  • https://www.gstatic.com/recaptcha/releases/lqsTZ5beIbCkK4uGEGv9JmUR/recaptcha__en.js
  • Don't scale images in the browser (avoidScalingImages)The page has 4 images that are scaled more than 100 pixels. It would be better if those images are sent so the browser don't need to scale them.60
    Description: It's easy to scale images in the browser and make sure they look good in different devices, however that is bad for performance! Scaling images in the browser takes extra CPU time and will hurt performance on mobile. And the user will download extra kilobytes (sometimes megabytes) of data that could be avoided. Don't do that, make sure you create multiple version of the same image server-side and serve the appropriate one.
    Offenders:
  • https://ui.adsabs.harvard.edu/styles/img/transparent_logo.svg
  • https://ui.adsabs.harvard.edu/styles/img/orcid-inactive.svg
  • https://ui.adsabs.harvard.edu/styles/img/cfa.png
  • https://ui.adsabs.harvard.edu/styles/img/nasa-partner.svg
  • Avoid using Google Tag Manager. (googleTagManager)The page is using Google Tag Manager, this is a performance risk since non-tech users can add JavaScript to your page.0
    Description: Google Tag Manager makes it possible for non tech users to add scripts to your page that will downgrade performance.
    Inline CSS for faster first render (inlineCss)The page has both inline CSS and CSS requests even though it uses a HTTP/2-ish connection. If you have many users on slow connections, it can be better to only inline the CSS. Run your own tests and check the waterfall graph to see what happens.95
    Description: In the early days of the Internet, inlining CSS was one of the ugliest things you can do. That has changed if you want your page to start rendering fast for your user. Always inline the critical CSS when you use HTTP/1 and HTTP/2 (avoid doing CSS requests that block rendering) and lazy load and cache the rest of the CSS. It is a little more complicated when using HTTP/2. Does your server support HTTP push? Then maybe that can help. Do you have a lot of users on a slow connection and are serving large chunks of HTML? Then it could be better to use the inline technique, becasue some servers always prioritize HTML content over CSS so the user needs to download the HTML first, before the CSS is downloaded.
    Have a fast largest contentful paint (largestContentfulPaint)Largest contentful paint can be improved 2.822 s. It is in the Google Web Vitals needs improvement range, slower than 2.5 seconds.80
    Description: Largest contentful paint is one of Google Web Vitals and reports the render time of the largest image or text block visible within the viewport, relative to when the page first started loading. To be fast according to Google, it needs to render before 2.5 seconds and results over 4 seconds is poor performance.
    Offenders:
  • <p></p>
  • Avoid CPU Long Tasks (longTasks)The page has 4 CPU long tasks with the total of 660 ms. The total blocking time is 460 ms . However the CPU Long Task is depending on the computer/phones actual CPU speed, so you should measure this on the same type of the device that your user is using. Use Geckoprofiler for Firefox or Chromes tracelog to debug your long tasks.20
    Description: Long CPU tasks locks the thread. To the user this is commonly visible as a "locked up" page where the browser is unable to respond to user input; this is a major source of bad user experience on the web today. However the CPU Long Task is depending on the computer/phones actual CPU speed, so you should measure this on the same type of the device that your user is using. To debug you should use the Chrome timeline log and drag/drop it into devtools or use Firefox Geckoprofiler.
    Offenders:
  • self
  • self
  • self
  • self
  • Avoid Frontend single point of failures (spof)The page has 1 request inside of the head that can cause a SPOF (single point of failure). Load them asynchronously or move them outside of the document head.90
    Description: A page can be stopped from loading in the browser if a single JavaScript, CSS, and in some cases a font, couldn't be fetched or is loading really slowly (the white screen of death). That is a scenario you really want to avoid. Never load 3rd-party components synchronously inside of the head tag.
    Offenders:
  • https://www.google.com/recaptcha/api.js?render=6LcpTuUnAAAAAD6YCBdr_2-0b1AH8N6nXkYEG5G5
  • Avoid doing redirects (assetsRedirects)The page has 1 redirect. 1 request are from other domains, it could be 3rd-party assets doing unnecessary redirects. :(90
    Description: A redirect is one extra step for the user to download the asset. Avoid that if you want to be fast. Redirects are even more of a showstopper on mobile.
    Offenders:
  • https://unpkg.com/web-vitals/dist/web-vitals.iife.js
  • Avoid extra requests by setting cache headers (cacheHeaders)The page has 9 requests that are missing a cache time. Configure a cache time so the browser doesn't need to download them every time. It will save 161 kB the next access.10
    Description: The easiest way to make your page fast is to avoid doing requests to the server. Setting a cache header on your server response will tell the browser that it doesn't need to download the asset again during the configured cache time! Always try to set a cache time if the content doesn't change for every request.
    Offenders:
  • https://www.google.com/recaptcha/api2/anchor...ptcha/api2/anchor
  • https://ui.adsabs.harvard.edu/v1/accounts/bootstrap
  • https://ui.adsabs.harvard.edu/v1/accounts/bootstrap
  • https://ui.adsabs.harvard.edu/v1/vault/configuration/site_wide_message
  • https://ui.adsabs.harvard.edu/v1/search/query...u/v1/search/query
  • https://ui.adsabs.harvard.edu/v1/search/query...u/v1/search/query
  • https://ui.adsabs.harvard.edu/v1/search/query...u/v1/search/query
  • https://ui.adsabs.harvard.edu/v1/search/query...u/v1/search/query
  • https://ui.adsabs.harvard.edu/v1/search/query...u/v1/search/query
  • Long cache headers is good (cacheHeadersLong)The page has 80 requests that have a shorter cache time than 30 days (but still a cache time).20
    Description: Setting a cache header is good. Setting a long cache header (at least 30 days) is even better beacause then it will stay long in the browser cache. But what do you do if that asset change? Rename it and the browser will pick up the new version.
    Offenders:
  • https://ui.adsabs.harvard.edu/styles/css/styles.css?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/libs/require.js
  • https://ui.adsabs.harvard.edu/config/shim.js?v=v1.5.7-hotfix4
  • https://www.google.com/recaptcha/api.js?render=6LcpTuUnAAAAAD6YCBdr_2-0b1AH8N6nXkYEG5G5
  • https://js.sentry-cdn.com/46062cbe0aeb7a3b2bb4c3a9b8cd1ac7.min.js
  • https://www.googletagmanager.com/gtm.js?id=GTM-NT2453N
  • https://ui.adsabs.harvard.edu/config/main.config.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/config/main.bundle.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/config/search-page.config.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/config/search-page.bundle.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/config/discovery.vars.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/libs/polyfill.js?v=v1.5.7-hotfix4
  • https://www.googletagmanager.com/gtag/js?id=G-X07MS2584V&l=dataLayer&cx=c
  • https://unpkg.com/web-vitals/dist/web-vitals.iife.js
  • https://unpkg.com/web-vitals@4.2.4/dist/web-vitals.iife.js
  • https://cdn.jsdelivr.net/npm/react@16/umd/react.production.min.js?v=v1.5.7-hotfix4
  • https://cdn.jsdelivr.net/npm/prop-types@15.6/prop-types.min.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/libs/sprintf.js?v=v1.5.7-hotfix4
  • https://www.gstatic.com/recaptcha/api2/logo_48.png
  • https://ui.adsabs.harvard.edu/styles/img/transparent_logo.svg
  • https://ui.adsabs.harvard.edu/styles/img/orcid-inactive.svg
  • https://ui.adsabs.harvard.edu/styles/img/smithsonian-logo.svg
  • https://ui.adsabs.harvard.edu/styles/img/cfa.png
  • https://ui.adsabs.harvard.edu/styles/img/nasa-partner.svg
  • https://ui.adsabs.harvard.edu/libs/fontawesome/fonts/fontawesome-webfont.woff2?v=4.7.0
  • https://ui.adsabs.harvard.edu/js/widgets/sort/widget.jsx.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/widget.jsx.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/widgets/export/widget.jsx.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/wraps/author_network.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/wraps/paper_network.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/styles/img/reads_vs_time.png
  • https://ui.adsabs.harvard.edu/styles/img/citations_vs_time.png
  • https://ui.adsabs.harvard.edu/styles/img/reads_vs_citations.png
  • https://ui.adsabs.harvard.edu/js/widgets/orcid-selector/widget.jsx.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/index.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/styles/css/images/ui-bg_flat_75_ffffff_40x100.png
  • https://ui.adsabs.harvard.edu/js/widgets/sort/redux/configure-store.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/widgets/sort/redux/modules/sort-app.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/widgets/sort/containers/sort-container.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/widgets/orcid-selector/redux/configure-store.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/widgets/orcid-selector/redux/modules/orcid-sele...d-selector-app.js
  • https://ui.adsabs.harvard.edu/js/widgets/orcid-selector/containers/orcid-selecto...ctor-container.js
  • https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/containers/App....ainers/App.jsx.js
  • https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/constants/actio...ts/actionNames.js
  • https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/actions/index.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/reducers/index.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/widgets/export/reducers/index.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/widgets/export/actions/index.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/widgets/export/containers/App.jsx.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/wraps/templates/paper-network-data.html?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/wraps/templates/paper-network-container.html?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/wraps/templates/paper-network-link-data.html?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/components/App.jsx.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/react/WithBackboneView.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/react/configureStore.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/actions.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/middleware.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/reducer.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/react/shared/helpers.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/react/shared/middleware/api.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/widgets/sort/components/sort-app.jsx.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/widgets/orcid-selector/components/orcid-selecto...lector-app.jsx.js
  • https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/components/Expo...matControl.jsx.js
  • https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/components/Sele...ionButtons.jsx.js
  • https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/components/Row....onents/Row.jsx.js
  • https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/components/Mess...ts/Message.jsx.js
  • https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/components/Load...ts/Loading.jsx.js
  • https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/components/Clos...nts/Closer.jsx.js
  • https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/models/authorAf...horAffiliation.js
  • https://ui.adsabs.harvard.edu/js/widgets/export/components/Closer.jsx.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/widgets/export/components/Setup.jsx.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/widgets/export/components/Export.jsx.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/components/CollapsePanel.js...lapsePanel.jsx.js
  • https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/containers/SaveQueryForm.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/components/Last...iveDateRow.jsx.js
  • https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/components/Affi...liationRow.jsx.js
  • https://ui.adsabs.harvard.edu/js/widgets/export/components/ClipboardBtn.jsx.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/components/SaveQueryForm.js...eQueryForm.jsx.js
  • https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/constants.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/favicon-32x32.png
  • Always compress text content (compressAssets)The page has 38 requests that are served uncompressed. You could save a lot of bytes by sending them compressed instead.0
    Description: In the early days of the Internet there were browsers that didn't support compressing (gzipping) text content. They do now. Make sure you compress HTML, JSON, JavaScript, CSS and SVG. It will save bytes for the user; making the page load faster and use less bandwith.
    Offenders:
    URLTransfer sizeContent size
    https://ui.adsabs.harvard.edu/search/q=author%3A%22%5EPenrose%22&sort=date%20des...bcode%20desc&p_=0 8.2 KB8.0 KB
    https://ui.adsabs.harvard.edu/styles/css/styles.css?v=v1.5.7-hotfix4 340.9 KB340.5 KB
    https://ui.adsabs.harvard.edu/libs/require.js 69.4 KB69.3 KB
    https://ui.adsabs.harvard.edu/config/shim.js?v=v1.5.7-hotfix4 2.8 KB2.7 KB
    https://ui.adsabs.harvard.edu/config/main.config.js?v=v1.5.7-hotfix4 16.1 KB15.9 KB
    https://ui.adsabs.harvard.edu/config/main.bundle.js?v=v1.5.7-hotfix4 445.5 KB445.2 KB
    https://ui.adsabs.harvard.edu/config/search-page.config.js?v=v1.5.7-hotfix4 15.8 KB15.7 KB
    https://ui.adsabs.harvard.edu/config/search-page.bundle.js?v=v1.5.7-hotfix4 641.9 KB641.5 KB
    https://ui.adsabs.harvard.edu/libs/polyfill.js?v=v1.5.7-hotfix4 25.0 KB24.9 KB
    https://ui.adsabs.harvard.edu/libs/sprintf.js?v=v1.5.7-hotfix4 3.7 KB3.6 KB
    https://ui.adsabs.harvard.edu/styles/img/transparent_logo.svg 3.2 KB3.2 KB
    https://ui.adsabs.harvard.edu/styles/img/smithsonian-logo.svg 10.6 KB10.6 KB
    https://ui.adsabs.harvard.edu/styles/img/nasa-partner.svg 10.1 KB10.0 KB
    https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/widget.jsx.js?v=v1.5.7-hotfix4 3.2 KB3.1 KB
    https://ui.adsabs.harvard.edu/js/widgets/export/widget.jsx.js?v=v1.5.7-hotfix4 4.6 KB4.5 KB
    https://ui.adsabs.harvard.edu/js/wraps/paper_network.js?v=v1.5.7-hotfix4 12.5 KB12.4 KB
    https://ui.adsabs.harvard.edu/js/widgets/sort/redux/modules/sort-app.js?v=v1.5.7-hotfix4 3.3 KB3.3 KB
    https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/containers/App....ainers/App.jsx.js 7.6 KB7.5 KB
    https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/actions/index.js?v=v1.5.7-hotfix4 7.2 KB7.1 KB
    https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/reducers/index.js?v=v1.5.7-hotfix4 3.5 KB3.5 KB
    https://ui.adsabs.harvard.edu/js/widgets/export/reducers/index.js?v=v1.5.7-hotfix4 6.5 KB6.3 KB
    https://ui.adsabs.harvard.edu/js/widgets/export/actions/index.js?v=v1.5.7-hotfix4 6.1 KB6.1 KB
    https://ui.adsabs.harvard.edu/js/widgets/export/containers/App.jsx.js?v=v1.5.7-hotfix4 7.8 KB7.7 KB
    https://ui.adsabs.harvard.edu/js/wraps/templates/paper-network-data.html?v=v1.5.7-hotfix4 2.5 KB2.5 KB
    https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/components/App.jsx.js?v=v1.5.7-hotfix4 5.2 KB5.2 KB
    https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/actions.js?v=v1.5.7-hotfix4 2.3 KB2.2 KB
    https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/middleware.js?v=v1.5.7-hotfix4 4.3 KB4.2 KB
    https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/reducer.js?v=v1.5.7-hotfix4 4.0 KB3.9 KB
    https://ui.adsabs.harvard.edu/js/react/shared/helpers.js?v=v1.5.7-hotfix4 3.7 KB3.6 KB
    https://ui.adsabs.harvard.edu/js/react/shared/middleware/api.js?v=v1.5.7-hotfix4 2.3 KB2.3 KB
    https://ui.adsabs.harvard.edu/js/widgets/orcid-selector/components/orcid-selecto...lector-app.jsx.js 5.0 KB5.0 KB
    https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/models/authorAf...horAffiliation.js 3.0 KB3.0 KB
    https://ui.adsabs.harvard.edu/js/widgets/export/components/Setup.jsx.js?v=v1.5.7-hotfix4 4.1 KB4.0 KB
    https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/components/CollapsePanel.js...lapsePanel.jsx.js 4.0 KB4.0 KB
    https://ui.adsabs.harvard.edu/js/widgets/export/components/ClipboardBtn.jsx.js?v=v1.5.7-hotfix4 3.2 KB3.2 KB
    https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/components/SaveQueryForm.js...eQueryForm.jsx.js 5.4 KB5.2 KB
    https://ui.adsabs.harvard.edu/v1/search/query...u/v1/search/query 58.7 KB58.3 KB
    https://ui.adsabs.harvard.edu/v1/search/query...u/v1/search/query 58.4 KB58.1 KB
    Total CSS size shouldn't be too big (cssSize)The total CSS transfer size is 391.8 kB and uncompressed size is 427.9 kB. That is big and the CSS could most probably be smaller.0
    Description: Delivering a massive amount of CSS to the browser is not the best thing you can do, because it means more work for the browser when parsing the CSS against the HTML and that makes the rendering slower. Try to send only the CSS that is used on that page. And make sure to remove CSS rules when they aren't used anymore.
    Offenders:
    URLTransfer sizeContent size
    https://ui.adsabs.harvard.edu/styles/css/styles.css?v=v1.5.7-hotfix4 340.9 KB340.5 KB
    https://www.gstatic.com/recaptcha/releases/lqsTZ5beIbCkK4uGEGv9JmUR/styles__ltr.css 41.7 KB77.4 KB
    Avoid too many fonts (fewFonts)The page has 6 font requests. Do you really need them? What value does the fonts give the user?40
    Description: How many fonts do you need on a page for the user to get the message? Fonts can slow down the rendering of content, try to avoid loading too many of them because worst case it can make the text invisible until they are loaded (FOIT—flash of invisible text), best case they will flicker the text content when they arrive.
    Offenders:
  • https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxK.woff2
  • https://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc4.woff2
  • https://ui.adsabs.harvard.edu/libs/fontawesome/fonts/fontawesome-webfont.woff2?v=4.7.0
  • https://cdn.jsdelivr.net/npm/mathjax@2.7.4/fonts/HTML-CSS/TeX/woff/MathJax_Main-Regular.woff?V=2.7.4
  • https://cdn.jsdelivr.net/npm/mathjax@2.7.4/fonts/HTML-CSS/TeX/woff/MathJax_Math-Italic.woff?V=2.7.4
  • https://cdn.jsdelivr.net/npm/mathjax@2.7.4/fonts/HTML-CSS/TeX/woff/MathJax_Size1...ize1-Regular.woff
  • Total JavaScript size shouldn't be too big (javascriptSize)The total JavaScript transfer size is 2.6 MB and the uncompressed size is 5 MB. This is totally crazy! There is really room for improvement here. 0
    Description: A lot of JavaScript often means you are downloading more than you need. How complex is the page and what can the user do on the page? Do you use multiple JavaScript frameworks?
    Offenders:
    URLTransfer sizeContent size
    https://ui.adsabs.harvard.edu/libs/require.js 69.4 KB69.3 KB
    https://ui.adsabs.harvard.edu/config/shim.js?v=v1.5.7-hotfix4 2.8 KB2.7 KB
    https://www.google.com/recaptcha/api.js?render=6LcpTuUnAAAAAD6YCBdr_2-0b1AH8N6nXkYEG5G5 1.4 KB1.4 KB
    https://js.sentry-cdn.com/46062cbe0aeb7a3b2bb4c3a9b8cd1ac7.min.js 2.5 KB2.8 KB
    https://www.gstatic.com/recaptcha/releases/lqsTZ5beIbCkK4uGEGv9JmUR/recaptcha__en.js 216.2 KB544.2 KB
    https://www.googletagmanager.com/gtm.js?id=GTM-NT2453N 81.4 KB244.1 KB
    https://browser.sentry-cdn.com/7.119.2/bundle.tracing.replay.min.js 71.4 KB223.3 KB
    https://ui.adsabs.harvard.edu/config/main.config.js?v=v1.5.7-hotfix4 16.1 KB15.9 KB
    https://ui.adsabs.harvard.edu/config/main.bundle.js?v=v1.5.7-hotfix4 445.5 KB445.2 KB
    https://ui.adsabs.harvard.edu/config/search-page.config.js?v=v1.5.7-hotfix4 15.8 KB15.7 KB
    https://ui.adsabs.harvard.edu/config/search-page.bundle.js?v=v1.5.7-hotfix4 641.9 KB641.5 KB
    https://ui.adsabs.harvard.edu/config/discovery.vars.js?v=v1.5.7-hotfix4 1.9 KB1.8 KB
    https://cdn.jsdelivr.net/npm/regenerator-runtime@0.13.9/runtime.js?v=v1.5.7-hotfix4 7.9 KB24.3 KB
    https://ui.adsabs.harvard.edu/libs/polyfill.js?v=v1.5.7-hotfix4 25.0 KB24.9 KB
    https://cdn.jsdelivr.net/npm/lodash@2.4.2/dist/lodash.compat.min.js?v=v1.5.7-hotfix4 12.7 KB33.2 KB
    https://cdn.jsdelivr.net/npm/jquery@2.2.4/dist/jquery.min.js?v=v1.5.7-hotfix4 31.0 KB83.6 KB
    https://cdn.jsdelivr.net/npm/d3@3.5.17/d3.min.js?v=v1.5.7-hotfix4 54.3 KB148.2 KB
    https://www.googletagmanager.com/gtag/js?id=G-X07MS2584V&l=dataLayer&cx=c 99.8 KB292.5 KB
    https://unpkg.com/web-vitals@4.2.4/dist/web-vitals.iife.js 3.5 KB7.1 KB
    https://cdn.jsdelivr.net/npm/backbone@1.1.2/backbone-min.js?v=v1.5.7-hotfix4 7.1 KB19.5 KB
    https://cdn.jsdelivr.net/npm/d3-cloud@1.2.5/build/d3.layout.cloud.js?v=v1.5.7-hotfix4 4.9 KB14.3 KB
    https://cdn.jsdelivr.net/npm/backbone-validation@0.11.3/dist/backbone-validation...dation-amd-min.js 3.5 KB9.4 KB
    https://www.gstatic.com/recaptcha/releases/lqsTZ5beIbCkK4uGEGv9JmUR/recaptcha__en.js 215.8 KB544.2 KB
    https://cdn.jsdelivr.net/npm/react@16/umd/react.production.min.js?v=v1.5.7-hotfix4 5.2 KB12.2 KB
    https://cdn.jsdelivr.net/npm/jsonpath@0.2.12/jsonpath.min.js?v=v1.5.7-hotfix4 27.5 KB82.7 KB
    https://cdn.jsdelivr.net/npm/hotkeys-js@3.8.7/dist/hotkeys.min.js?v=v1.5.7-hotfix4 2.8 KB5.6 KB
    https://cdn.jsdelivr.net/npm/react-dom@17.0.2/umd/react-dom.production.min.js?v=v1.5.7-hotfix4 40.7 KB117.8 KB
    https://cdn.jsdelivr.net/npm/react-redux@7.2.4/dist/react-redux.min.js?v=v1.5.7-hotfix4 5.5 KB14.4 KB
    https://cdn.jsdelivr.net/npm/prop-types@15.6/prop-types.min.js?v=v1.5.7-hotfix4 958 B1.6 KB
    https://cdn.jsdelivr.net/npm/redux@4.0.5/dist/redux.min.js?v=v1.5.7-hotfix4 2.7 KB6.5 KB
    https://cdn.jsdelivr.net/npm/redux-thunk@2.3.0/dist/redux-thunk.min.js?v=v1.5.7-hotfix4 509 B692 B
    https://cdn.jsdelivr.net/npm/moment@2.22.2/min/moment.min.js?v=v1.5.7-hotfix4 17.7 KB50.5 KB
    https://ui.adsabs.harvard.edu/libs/sprintf.js?v=v1.5.7-hotfix4 3.7 KB3.6 KB
    https://cdn.jsdelivr.net/npm/backbone.marionette@2.4.5/lib/backbone.marionette.m...marionette.min.js 12.4 KB44.0 KB
    https://cdn.jsdelivr.net/npm/persist-js@0.3.1/persist-min.js?v=v1.5.7-hotfix4 3.6 KB9.3 KB
    https://code.jquery.com/ui/1.12.1/jquery-ui.min.js?v=v1.5.7-hotfix4 66.5 KB247.7 KB
    https://cdn.jsdelivr.net/npm/bootstrap@3.3.7/dist/js/bootstrap.min.js?v=v1.5.7-hotfix4 10.5 KB36.2 KB
    https://www.google.com/js/bg/9J_OlxnAizjMJN_fZ8JRYj0PV4Me2EAx1CVcnywh2Sk.js 7.9 KB18.5 KB
    https://cdn.jsdelivr.net/npm/bowser@2.11.0/es5.js?v=v1.5.7-hotfix4 6.0 KB25.4 KB
    https://cdn.jsdelivr.net/npm/select2@4.0.3/dist/js/select2.min.js?v=v1.5.7-hotfix4 19.8 KB65.1 KB
    https://ui.adsabs.harvard.edu/js/widgets/sort/widget.jsx.js?v=v1.5.7-hotfix4 1.9 KB1.8 KB
    https://cdn.jsdelivr.net/npm/clipboard@1.7.1/dist/clipboard.min.js?v=v1.5.7-hotfix4 3.9 KB10.7 KB
    https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/widget.jsx.js?v=v1.5.7-hotfix4 3.2 KB3.1 KB
    https://ui.adsabs.harvard.edu/js/widgets/export/widget.jsx.js?v=v1.5.7-hotfix4 4.6 KB4.5 KB
    https://ui.adsabs.harvard.edu/js/wraps/author_network.js?v=v1.5.7-hotfix4 781 B733 B
    https://ui.adsabs.harvard.edu/js/wraps/paper_network.js?v=v1.5.7-hotfix4 12.5 KB12.4 KB
    https://ui.adsabs.harvard.edu/js/widgets/orcid-selector/widget.jsx.js?v=v1.5.7-hotfix4 1.2 KB1.2 KB
    https://cdn.jsdelivr.net/npm/mathjax@2.7.4/MathJax.js...@2.7.4/MathJax.js 20.3 KB61.9 KB
    https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/index.js?v=v1.5.7-hotfix4 617 B547 B
    https://ui.adsabs.harvard.edu/js/widgets/sort/redux/configure-store.js?v=v1.5.7-hotfix4 298 B252 B
    https://ui.adsabs.harvard.edu/js/widgets/sort/redux/modules/sort-app.js?v=v1.5.7-hotfix4 3.3 KB3.3 KB
    https://ui.adsabs.harvard.edu/js/widgets/sort/containers/sort-container.js?v=v1.5.7-hotfix4 322 B275 B
    https://ui.adsabs.harvard.edu/js/widgets/orcid-selector/redux/configure-store.js?v=v1.5.7-hotfix4 308 B262 B
    https://ui.adsabs.harvard.edu/js/widgets/orcid-selector/redux/modules/orcid-sele...d-selector-app.js 2.0 KB1.9 KB
    https://ui.adsabs.harvard.edu/js/widgets/orcid-selector/containers/orcid-selecto...ctor-container.js 414 B365 B
    https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/containers/App....ainers/App.jsx.js 7.6 KB7.5 KB
    https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/constants/actio...ts/actionNames.js 368 B317 B
    https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/actions/index.js?v=v1.5.7-hotfix4 7.2 KB7.1 KB
    https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/reducers/index.js?v=v1.5.7-hotfix4 3.5 KB3.5 KB
    https://ui.adsabs.harvard.edu/js/widgets/export/reducers/index.js?v=v1.5.7-hotfix4 6.5 KB6.3 KB
    https://ui.adsabs.harvard.edu/js/widgets/export/actions/index.js?v=v1.5.7-hotfix4 6.1 KB6.1 KB
    https://ui.adsabs.harvard.edu/js/widgets/export/containers/App.jsx.js?v=v1.5.7-hotfix4 7.8 KB7.7 KB
    https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/components/App.jsx.js?v=v1.5.7-hotfix4 5.2 KB5.2 KB
    https://ui.adsabs.harvard.edu/js/react/WithBackboneView.js?v=v1.5.7-hotfix4 736 B688 B
    https://ui.adsabs.harvard.edu/js/react/configureStore.js?v=v1.5.7-hotfix4 268 B205 B
    https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/actions.js?v=v1.5.7-hotfix4 2.3 KB2.2 KB
    https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/middleware.js?v=v1.5.7-hotfix4 4.3 KB4.2 KB
    https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/reducer.js?v=v1.5.7-hotfix4 4.0 KB3.9 KB
    https://ui.adsabs.harvard.edu/js/react/shared/helpers.js?v=v1.5.7-hotfix4 3.7 KB3.6 KB
    https://ui.adsabs.harvard.edu/js/react/shared/middleware/api.js?v=v1.5.7-hotfix4 2.3 KB2.3 KB
    https://cdn.jsdelivr.net/npm/mathjax@2.7.4/config/TeX-AMS_HTML.js?V=2.7.4 65.0 KB216.4 KB
    https://ui.adsabs.harvard.edu/js/widgets/sort/components/sort-app.jsx.js?v=v1.5.7-hotfix4 1.3 KB1.2 KB
    https://ui.adsabs.harvard.edu/js/widgets/orcid-selector/components/orcid-selecto...lector-app.jsx.js 5.0 KB5.0 KB
    https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/components/Expo...matControl.jsx.js 376 B328 B
    https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/components/Sele...ionButtons.jsx.js 395 B347 B
    https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/components/Row....onents/Row.jsx.js 1.0 KB1004 B
    https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/components/Mess...ts/Message.jsx.js 262 B216 B
    https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/components/Load...ts/Loading.jsx.js 566 B520 B
    https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/components/Clos...nts/Closer.jsx.js 477 B430 B
    https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/models/authorAf...horAffiliation.js 3.0 KB3.0 KB
    https://cdn.jsdelivr.net/npm/file-saver@1.3.8/FileSaver.min.js?v=v1.5.7-hotfix4 1.3 KB2.4 KB
    https://ui.adsabs.harvard.edu/js/widgets/export/components/Closer.jsx.js?v=v1.5.7-hotfix4 517 B468 B
    https://ui.adsabs.harvard.edu/js/widgets/export/components/Setup.jsx.js?v=v1.5.7-hotfix4 4.1 KB4.0 KB
    https://ui.adsabs.harvard.edu/js/widgets/export/components/Export.jsx.js?v=v1.5.7-hotfix4 1.3 KB1.3 KB
    https://cdn.jsdelivr.net/npm/react-bootstrap@0.33.0/dist/react-bootstrap.min.js?v=v1.5.7-hotfix4 42.8 KB162.1 KB
    https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/components/CollapsePanel.js...lapsePanel.jsx.js 4.0 KB4.0 KB
    https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/containers/SaveQueryForm.js?v=v1.5.7-hotfix4 418 B319 B
    https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/components/Last...iveDateRow.jsx.js 321 B270 B
    https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/components/Affi...liationRow.jsx.js 484 B431 B
    https://ui.adsabs.harvard.edu/js/widgets/export/components/ClipboardBtn.jsx.js?v=v1.5.7-hotfix4 3.2 KB3.2 KB
    https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/components/SaveQueryForm.js...eQueryForm.jsx.js 5.4 KB5.2 KB
    https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/constants.js?v=v1.5.7-hotfix4 151 B88 B
    https://cdn.jsdelivr.net/npm/mathjax@2.7.4/jax/output/HTML-CSS/jax.js?V=2.7.4 26.3 KB80.0 KB
    https://cdn.jsdelivr.net/npm/mathjax@2.7.4/jax/output/HTML-CSS/fonts/TeX/fontdata.js?V=2.7.4 13.0 KB43.3 KB
    Make each CSS response small (optimalCssSize)https://ui.adsabs.harvard.edu/styles/css/styles.css?v=v1.5.7-hotfix4 size is 349.1 kB (349087) and that is bigger than the limit of 14.5 kB. https://www.gstatic.com/recaptcha/releases/lqsTZ5beIbCkK4uGEGv9JmUR/styles__ltr.css size is 42.7 kB (42668) and that is bigger than the limit of 14.5 kB. Try to make the CSS files fit into 14.5 KB.80
    Description: Make CSS responses small to fit into the magic number TCP window size of 14.5 KB. The browser can then download the CSS faster and that will make the page start rendering earlier.
    Offenders:
    URLTransfer sizeContent size
    https://ui.adsabs.harvard.edu/styles/css/styles.css?v=v1.5.7-hotfix4 340.9 KB340.5 KB
    https://www.gstatic.com/recaptcha/releases/lqsTZ5beIbCkK4uGEGv9JmUR/styles__ltr.css 41.7 KB77.4 KB
    Total page size shouldn't be too big (pageSize)The page total transfer size is 3.5 MB, which is more than the coach limit of 2 MB. That is really big and you need to make it smaller.0
    Description: Avoid having pages that have a transfer size over the wire of more than 2 MB (desktop) and 1 MB (mobile) because that is really big and will hurt performance and will make the page expensive for the user if she/he pays for the bandwidth.
    Offenders:
    URLTransfer sizeContent size
    https://ui.adsabs.harvard.edu/search/q=author%3A%22%5EPenrose%22&sort=date%20des...bcode%20desc&p_=0 8.2 KB8.0 KB
    https://ui.adsabs.harvard.edu/styles/css/styles.css?v=v1.5.7-hotfix4 340.9 KB340.5 KB
    https://ui.adsabs.harvard.edu/libs/require.js 69.4 KB69.3 KB
    https://ui.adsabs.harvard.edu/config/shim.js?v=v1.5.7-hotfix4 2.8 KB2.7 KB
    https://www.google.com/recaptcha/api.js?render=6LcpTuUnAAAAAD6YCBdr_2-0b1AH8N6nXkYEG5G5 1.4 KB1.4 KB
    https://js.sentry-cdn.com/46062cbe0aeb7a3b2bb4c3a9b8cd1ac7.min.js 2.5 KB2.8 KB
    https://www.gstatic.com/recaptcha/releases/lqsTZ5beIbCkK4uGEGv9JmUR/recaptcha__en.js 216.2 KB544.2 KB
    https://www.googletagmanager.com/gtm.js?id=GTM-NT2453N 81.4 KB244.1 KB
    https://browser.sentry-cdn.com/7.119.2/bundle.tracing.replay.min.js 71.4 KB223.3 KB
    https://ui.adsabs.harvard.edu/config/main.config.js?v=v1.5.7-hotfix4 16.1 KB15.9 KB
    https://ui.adsabs.harvard.edu/config/main.bundle.js?v=v1.5.7-hotfix4 445.5 KB445.2 KB
    https://ui.adsabs.harvard.edu/config/search-page.config.js?v=v1.5.7-hotfix4 15.8 KB15.7 KB
    https://ui.adsabs.harvard.edu/config/search-page.bundle.js?v=v1.5.7-hotfix4 641.9 KB641.5 KB
    https://ui.adsabs.harvard.edu/config/discovery.vars.js?v=v1.5.7-hotfix4 1.9 KB1.8 KB
    https://cdn.jsdelivr.net/npm/regenerator-runtime@0.13.9/runtime.js?v=v1.5.7-hotfix4 7.9 KB24.3 KB
    https://ui.adsabs.harvard.edu/libs/polyfill.js?v=v1.5.7-hotfix4 25.0 KB24.9 KB
    https://cdn.jsdelivr.net/npm/lodash@2.4.2/dist/lodash.compat.min.js?v=v1.5.7-hotfix4 12.7 KB33.2 KB
    https://cdn.jsdelivr.net/npm/jquery@2.2.4/dist/jquery.min.js?v=v1.5.7-hotfix4 31.0 KB83.6 KB
    https://cdn.jsdelivr.net/npm/d3@3.5.17/d3.min.js?v=v1.5.7-hotfix4 54.3 KB148.2 KB
    https://www.googletagmanager.com/gtag/js?id=G-X07MS2584V&l=dataLayer&cx=c 99.8 KB292.5 KB
    https://unpkg.com/web-vitals/dist/web-vitals.iife.js N/A0 b
    https://www.google-analytics.com/g/collect...ics.com/g/collect 24 B0 b
    https://www.google-analytics.com/g/collect...ics.com/g/collect 546 B0 b
    https://www.google.com/recaptcha/api2/anchor...ptcha/api2/anchor 31.4 KB49.8 KB
    https://unpkg.com/web-vitals@4.2.4/dist/web-vitals.iife.js 3.5 KB7.1 KB
    https://cdn.jsdelivr.net/npm/backbone@1.1.2/backbone-min.js?v=v1.5.7-hotfix4 7.1 KB19.5 KB
    https://cdn.jsdelivr.net/npm/d3-cloud@1.2.5/build/d3.layout.cloud.js?v=v1.5.7-hotfix4 4.9 KB14.3 KB
    https://www.google-analytics.com/g/collect...ics.com/g/collect 24 B0 b
    https://cdn.jsdelivr.net/npm/backbone-validation@0.11.3/dist/backbone-validation...dation-amd-min.js 3.5 KB9.4 KB
    https://www.gstatic.com/recaptcha/releases/lqsTZ5beIbCkK4uGEGv9JmUR/styles__ltr.css 41.7 KB77.4 KB
    https://www.gstatic.com/recaptcha/releases/lqsTZ5beIbCkK4uGEGv9JmUR/recaptcha__en.js 215.8 KB544.2 KB
    https://cdn.jsdelivr.net/npm/react@16/umd/react.production.min.js?v=v1.5.7-hotfix4 5.2 KB12.2 KB
    https://cdn.jsdelivr.net/npm/jsonpath@0.2.12/jsonpath.min.js?v=v1.5.7-hotfix4 27.5 KB82.7 KB
    https://cdn.jsdelivr.net/npm/hotkeys-js@3.8.7/dist/hotkeys.min.js?v=v1.5.7-hotfix4 2.8 KB5.6 KB
    https://cdn.jsdelivr.net/npm/react-dom@17.0.2/umd/react-dom.production.min.js?v=v1.5.7-hotfix4 40.7 KB117.8 KB
    https://cdn.jsdelivr.net/npm/react-redux@7.2.4/dist/react-redux.min.js?v=v1.5.7-hotfix4 5.5 KB14.4 KB
    https://cdn.jsdelivr.net/npm/prop-types@15.6/prop-types.min.js?v=v1.5.7-hotfix4 958 B1.6 KB
    https://cdn.jsdelivr.net/npm/redux@4.0.5/dist/redux.min.js?v=v1.5.7-hotfix4 2.7 KB6.5 KB
    https://cdn.jsdelivr.net/npm/redux-thunk@2.3.0/dist/redux-thunk.min.js?v=v1.5.7-hotfix4 509 B692 B
    https://cdn.jsdelivr.net/npm/moment@2.22.2/min/moment.min.js?v=v1.5.7-hotfix4 17.7 KB50.5 KB
    https://ui.adsabs.harvard.edu/libs/sprintf.js?v=v1.5.7-hotfix4 3.7 KB3.6 KB
    https://cdn.jsdelivr.net/npm/backbone.marionette@2.4.5/lib/backbone.marionette.m...marionette.min.js 12.4 KB44.0 KB
    https://cdn.jsdelivr.net/npm/persist-js@0.3.1/persist-min.js?v=v1.5.7-hotfix4 3.6 KB9.3 KB
    https://code.jquery.com/ui/1.12.1/jquery-ui.min.js?v=v1.5.7-hotfix4 66.5 KB247.7 KB
    https://cdn.jsdelivr.net/npm/bootstrap@3.3.7/dist/js/bootstrap.min.js?v=v1.5.7-hotfix4 10.5 KB36.2 KB
    https://ui.adsabs.harvard.edu/v1/accounts/bootstrap 1.6 KB472 B
    https://www.google.com/js/bg/9J_OlxnAizjMJN_fZ8JRYj0PV4Me2EAx1CVcnywh2Sk.js 7.9 KB18.5 KB
    https://www.gstatic.com/recaptcha/api2/logo_48.png 2.3 KB2.2 KB
    https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxK.woff2 15.5 KB15.0 KB
    https://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc4.woff2 15.3 KB15.2 KB
    https://ui.adsabs.harvard.edu/v1/accounts/bootstrap 820 B472 B
    https://ui.adsabs.harvard.edu/styles/img/transparent_logo.svg 3.2 KB3.2 KB
    https://ui.adsabs.harvard.edu/styles/img/orcid-inactive.svg 681 B475 B
    https://ui.adsabs.harvard.edu/styles/img/smithsonian-logo.svg 10.6 KB10.6 KB
    https://ui.adsabs.harvard.edu/styles/img/cfa.png 55.9 KB55.8 KB
    https://ui.adsabs.harvard.edu/styles/img/nasa-partner.svg 10.1 KB10.0 KB
    https://ui.adsabs.harvard.edu/libs/fontawesome/fonts/fontawesome-webfont.woff2?v=4.7.0 75.5 KB75.4 KB
    https://cdn.jsdelivr.net/npm/bowser@2.11.0/es5.js?v=v1.5.7-hotfix4 6.0 KB25.4 KB
    https://cdn.jsdelivr.net/npm/select2@4.0.3/dist/js/select2.min.js?v=v1.5.7-hotfix4 19.8 KB65.1 KB
    https://ui.adsabs.harvard.edu/js/widgets/sort/widget.jsx.js?v=v1.5.7-hotfix4 1.9 KB1.8 KB
    https://cdn.jsdelivr.net/npm/clipboard@1.7.1/dist/clipboard.min.js?v=v1.5.7-hotfix4 3.9 KB10.7 KB
    https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/widget.jsx.js?v=v1.5.7-hotfix4 3.2 KB3.1 KB
    https://ui.adsabs.harvard.edu/js/widgets/export/widget.jsx.js?v=v1.5.7-hotfix4 4.6 KB4.5 KB
    https://ui.adsabs.harvard.edu/js/wraps/author_network.js?v=v1.5.7-hotfix4 781 B733 B
    https://ui.adsabs.harvard.edu/js/wraps/paper_network.js?v=v1.5.7-hotfix4 12.5 KB12.4 KB
    https://ui.adsabs.harvard.edu/styles/img/reads_vs_time.png 6.6 KB6.5 KB
    https://ui.adsabs.harvard.edu/styles/img/citations_vs_time.png 6.7 KB6.7 KB
    https://ui.adsabs.harvard.edu/styles/img/reads_vs_citations.png 8.3 KB8.2 KB
    https://ui.adsabs.harvard.edu/js/widgets/orcid-selector/widget.jsx.js?v=v1.5.7-hotfix4 1.2 KB1.2 KB
    https://cdn.jsdelivr.net/npm/mathjax@2.7.4/MathJax.js...@2.7.4/MathJax.js 20.3 KB61.9 KB
    https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/index.js?v=v1.5.7-hotfix4 617 B547 B
    https://ui.adsabs.harvard.edu/styles/css/images/ui-bg_flat_75_ffffff_40x100.png 155 B86 B
    https://ui.adsabs.harvard.edu/js/widgets/sort/redux/configure-store.js?v=v1.5.7-hotfix4 298 B252 B
    https://ui.adsabs.harvard.edu/js/widgets/sort/redux/modules/sort-app.js?v=v1.5.7-hotfix4 3.3 KB3.3 KB
    https://ui.adsabs.harvard.edu/js/widgets/sort/containers/sort-container.js?v=v1.5.7-hotfix4 322 B275 B
    https://ui.adsabs.harvard.edu/js/widgets/orcid-selector/redux/configure-store.js?v=v1.5.7-hotfix4 308 B262 B
    https://ui.adsabs.harvard.edu/js/widgets/orcid-selector/redux/modules/orcid-sele...d-selector-app.js 2.0 KB1.9 KB
    https://ui.adsabs.harvard.edu/js/widgets/orcid-selector/containers/orcid-selecto...ctor-container.js 414 B365 B
    https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/containers/App....ainers/App.jsx.js 7.6 KB7.5 KB
    https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/constants/actio...ts/actionNames.js 368 B317 B
    https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/actions/index.js?v=v1.5.7-hotfix4 7.2 KB7.1 KB
    https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/reducers/index.js?v=v1.5.7-hotfix4 3.5 KB3.5 KB
    https://ui.adsabs.harvard.edu/js/widgets/export/reducers/index.js?v=v1.5.7-hotfix4 6.5 KB6.3 KB
    https://ui.adsabs.harvard.edu/js/widgets/export/actions/index.js?v=v1.5.7-hotfix4 6.1 KB6.1 KB
    https://ui.adsabs.harvard.edu/js/widgets/export/containers/App.jsx.js?v=v1.5.7-hotfix4 7.8 KB7.7 KB
    https://ui.adsabs.harvard.edu/js/wraps/templates/paper-network-data.html?v=v1.5.7-hotfix4 2.5 KB2.5 KB
    https://ui.adsabs.harvard.edu/js/wraps/templates/paper-network-container.html?v=v1.5.7-hotfix4 1.1 KB1.1 KB
    https://ui.adsabs.harvard.edu/js/wraps/templates/paper-network-link-data.html?v=v1.5.7-hotfix4 1.2 KB1.1 KB
    https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/components/App.jsx.js?v=v1.5.7-hotfix4 5.2 KB5.2 KB
    https://ui.adsabs.harvard.edu/js/react/WithBackboneView.js?v=v1.5.7-hotfix4 736 B688 B
    https://ui.adsabs.harvard.edu/js/react/configureStore.js?v=v1.5.7-hotfix4 268 B205 B
    https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/actions.js?v=v1.5.7-hotfix4 2.3 KB2.2 KB
    https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/middleware.js?v=v1.5.7-hotfix4 4.3 KB4.2 KB
    https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/reducer.js?v=v1.5.7-hotfix4 4.0 KB3.9 KB
    https://ui.adsabs.harvard.edu/js/react/shared/helpers.js?v=v1.5.7-hotfix4 3.7 KB3.6 KB
    https://ui.adsabs.harvard.edu/js/react/shared/middleware/api.js?v=v1.5.7-hotfix4 2.3 KB2.3 KB
    https://cdn.jsdelivr.net/npm/mathjax@2.7.4/config/TeX-AMS_HTML.js?V=2.7.4 65.0 KB216.4 KB
    https://ui.adsabs.harvard.edu/js/widgets/sort/components/sort-app.jsx.js?v=v1.5.7-hotfix4 1.3 KB1.2 KB
    https://ui.adsabs.harvard.edu/js/widgets/orcid-selector/components/orcid-selecto...lector-app.jsx.js 5.0 KB5.0 KB
    https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/components/Expo...matControl.jsx.js 376 B328 B
    https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/components/Sele...ionButtons.jsx.js 395 B347 B
    https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/components/Row....onents/Row.jsx.js 1.0 KB1004 B
    https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/components/Mess...ts/Message.jsx.js 262 B216 B
    https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/components/Load...ts/Loading.jsx.js 566 B520 B
    https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/components/Clos...nts/Closer.jsx.js 477 B430 B
    https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/models/authorAf...horAffiliation.js 3.0 KB3.0 KB
    https://cdn.jsdelivr.net/npm/file-saver@1.3.8/FileSaver.min.js?v=v1.5.7-hotfix4 1.3 KB2.4 KB
    https://ui.adsabs.harvard.edu/js/widgets/export/components/Closer.jsx.js?v=v1.5.7-hotfix4 517 B468 B
    https://ui.adsabs.harvard.edu/js/widgets/export/components/Setup.jsx.js?v=v1.5.7-hotfix4 4.1 KB4.0 KB
    https://ui.adsabs.harvard.edu/js/widgets/export/components/Export.jsx.js?v=v1.5.7-hotfix4 1.3 KB1.3 KB
    https://cdn.jsdelivr.net/npm/react-bootstrap@0.33.0/dist/react-bootstrap.min.js?v=v1.5.7-hotfix4 42.8 KB162.1 KB
    https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/components/CollapsePanel.js...lapsePanel.jsx.js 4.0 KB4.0 KB
    https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/containers/SaveQueryForm.js?v=v1.5.7-hotfix4 418 B319 B
    https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/components/Last...iveDateRow.jsx.js 321 B270 B
    https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/components/Affi...liationRow.jsx.js 484 B431 B
    https://ui.adsabs.harvard.edu/js/widgets/export/components/ClipboardBtn.jsx.js?v=v1.5.7-hotfix4 3.2 KB3.2 KB
    https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/components/SaveQueryForm.js...eQueryForm.jsx.js 5.4 KB5.2 KB
    https://ui.adsabs.harvard.edu/v1/vault/configuration/site_wide_message 1.4 KB195 B
    https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/constants.js?v=v1.5.7-hotfix4 151 B88 B
    https://ui.adsabs.harvard.edu/favicon-32x32.png 1.6 KB1.5 KB
    https://ui.adsabs.harvard.edu/v1/search/query...u/v1/search/query 58.7 KB58.3 KB
    https://ui.adsabs.harvard.edu/v1/search/query...u/v1/search/query 1.6 KB1.2 KB
    https://ui.adsabs.harvard.edu/v1/search/query...u/v1/search/query 1.1 KB803 B
    https://ui.adsabs.harvard.edu/v1/search/query...u/v1/search/query 2.3 KB1.1 KB
    https://ui.adsabs.harvard.edu/v1/search/query...u/v1/search/query 58.4 KB58.1 KB
    https://o1060269.ingest.us.sentry.io/api/4507341192036352/envelope/...2036352/envelope/ 339 B41 B
    https://cdn.jsdelivr.net/npm/mathjax@2.7.4/jax/output/HTML-CSS/jax.js?V=2.7.4 26.3 KB80.0 KB
    https://cdn.jsdelivr.net/npm/mathjax@2.7.4/jax/output/HTML-CSS/fonts/TeX/fontdata.js?V=2.7.4 13.0 KB43.3 KB
    https://cdn.jsdelivr.net/npm/mathjax@2.7.4/fonts/HTML-CSS/TeX/woff/MathJax_Main-Regular.woff?V=2.7.4 33.5 KB33.4 KB
    https://cdn.jsdelivr.net/npm/mathjax@2.7.4/fonts/HTML-CSS/TeX/woff/MathJax_Math-Italic.woff?V=2.7.4 19.0 KB18.9 KB
    https://cdn.jsdelivr.net/npm/mathjax@2.7.4/fonts/HTML-CSS/TeX/woff/MathJax_Size1...ize1-Regular.woff 6.1 KB5.7 KB
    https://o1060269.ingest.us.sentry.io/api/4507341192036352/envelope/...2036352/envelope/ 94 B41 B
    https://www.google-analytics.com/g/collect...ics.com/g/collect 70 B0 b
    https://www.google-analytics.com/g/collect...ics.com/g/collect 47 B0 b
    https://www.google-analytics.com/g/collect...ics.com/g/collect 70 B0 b
    Don't use private headers on static content (privateAssets)The page has 3 requests with private headers. Make sure that the assets really should be private and only used by one user. Otherwise, make it cacheable for everyone.70
    Description: If you set private headers on content, that means that the content are specific for that user. Static content should be able to be cached and used by everyone. Avoid setting the cache header to private.
    Offenders:
  • https://www.google.com/recaptcha/api.js?render=6LcpTuUnAAAAAD6YCBdr_2-0b1AH8N6nXkYEG5G5
  • https://www.googletagmanager.com/gtm.js?id=GTM-NT2453N
  • https://www.googletagmanager.com/gtag/js?id=G-X07MS2584V&l=dataLayer&cx=c
  • Best practice advice (72)

    TitleAdviceScore
    Cumulative Layout Shift (cumulativeLayoutShift)You have a poor cumulative layout shift score (0.6484). It is in the Google Web Vitals poor range, with a shift higher than 0.25. You should manually check the filmstrip or video and check if it will affect the user.0
    Description: Cumulative Layout Shift measures the sum total of all individual layout shift scores for unexpected layout shift that occur. The metric is measuring visual stability by quantify how often users experience unexpected layout shifts. It is one of Google Web Vitals.
    Have a good URL format (url)The page is using more than two request parameters. You should really rethink and try to minimize the number of parameters. The URL is 106 characters long. Try to make it less than 100 characters. Could the developer or the CMS be on Windows? Avoid using spaces in the URLs, use hyphens or underscores. 30
    Description: A clean URL is good for the user and for SEO. Make them human readable, avoid too long URLs, spaces in the URL, too many request parameters, and never ever have the session id in your URL.
    Do not send too long headers (longHeaders)https://js.sentry-cd...a9b8cd1ac7.min.js has a header content-security-policy that is 1060 characters long. https://ui.adsabs.ha...ccounts/bootstrap has a header access-control-allow-origin that is 1057 characters long. https://ui.adsabs.ha...ccounts/bootstrap has a header access-control-allow-origin that is 1057 characters long. https://ui.adsabs.ha...site_wide_message has a header access-control-allow-origin that is 1057 characters long. https://ui.adsabs.ha...u/v1/search/query has a header access-control-allow-origin that is 1057 characters long. https://ui.adsabs.ha...u/v1/search/query has a header access-control-allow-origin that is 1057 characters long. https://ui.adsabs.ha...u/v1/search/query has a header access-control-allow-origin that is 1057 characters long. https://ui.adsabs.ha...u/v1/search/query has a header access-control-allow-origin that is 1057 characters long. https://ui.adsabs.ha...u/v1/search/query has a header access-control-allow-origin that is 1057 characters long. 91
    Description: Do not send response headers that are too long.
    Offenders:
  • https://js.sentry-cdn.com/46062cbe0aeb7a3b2bb4c3a9b8cd1ac7.min.js
  • https://ui.adsabs.harvard.edu/v1/accounts/bootstrap
  • https://ui.adsabs.harvard.edu/v1/accounts/bootstrap
  • https://ui.adsabs.harvard.edu/v1/vault/configuration/site_wide_message
  • https://ui.adsabs.harvard.edu/v1/search/query...u/v1/search/query
  • https://ui.adsabs.harvard.edu/v1/search/query...u/v1/search/query
  • https://ui.adsabs.harvard.edu/v1/search/query...u/v1/search/query
  • https://ui.adsabs.harvard.edu/v1/search/query...u/v1/search/query
  • https://ui.adsabs.harvard.edu/v1/search/query...u/v1/search/query
  • Avoid too many third party requests (thirdParty)The page do 41% requests to third party domains (55 requests and 1.4 MB). First party is 80 requests and 2.1 MB. The regex .*harvard.* was used to calculate first/third party requests.50
    Description: Do not load most of your content from third party URLs.
    Avoid unnecessary headers (unnecessaryHeaders)There are 89 responses that sets both a max-age and expires header. There are 8 responses that sets a pragma no-cache header (that is a request header). There are 23 responses that sets a server header. 0
    Description: Do not send headers that you don't need. We look for p3p, cache-control and max-age, pragma, server and x-frame-options headers. Have a look at Andrew Betts - Headers for Hackers talk as a guide https://www.youtube.com/watch?v=k92ZbrY815c or read https://www.fastly.com/blog/headers-we-dont-want.
    Offenders:
  • https://ui.adsabs.harvard.edu/search/q=author%3A%22%5EPenrose%22&sort=date%20des...bcode%20desc&p_=0
  • https://ui.adsabs.harvard.edu/styles/css/styles.css?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/libs/require.js
  • https://ui.adsabs.harvard.edu/config/shim.js?v=v1.5.7-hotfix4
  • https://www.google.com/recaptcha/api.js?render=6LcpTuUnAAAAAD6YCBdr_2-0b1AH8N6nXkYEG5G5
  • https://www.google.com/recaptcha/api.js?render=6LcpTuUnAAAAAD6YCBdr_2-0b1AH8N6nXkYEG5G5
  • https://www.gstatic.com/recaptcha/releases/lqsTZ5beIbCkK4uGEGv9JmUR/recaptcha__en.js
  • https://www.gstatic.com/recaptcha/releases/lqsTZ5beIbCkK4uGEGv9JmUR/recaptcha__en.js
  • https://www.googletagmanager.com/gtm.js?id=GTM-NT2453N
  • https://www.googletagmanager.com/gtm.js?id=GTM-NT2453N
  • https://browser.sentry-cdn.com/7.119.2/bundle.tracing.replay.min.js
  • https://browser.sentry-cdn.com/7.119.2/bundle.tracing.replay.min.js
  • https://ui.adsabs.harvard.edu/config/main.config.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/config/main.bundle.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/config/search-page.config.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/config/search-page.bundle.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/config/discovery.vars.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/libs/polyfill.js?v=v1.5.7-hotfix4
  • https://www.googletagmanager.com/gtag/js?id=G-X07MS2584V&l=dataLayer&cx=c
  • https://www.googletagmanager.com/gtag/js?id=G-X07MS2584V&l=dataLayer&cx=c
  • https://unpkg.com/web-vitals/dist/web-vitals.iife.js
  • https://www.google-analytics.com/g/collect...ics.com/g/collect
  • https://www.google-analytics.com/g/collect...ics.com/g/collect
  • https://www.google-analytics.com/g/collect...ics.com/g/collect
  • https://www.google-analytics.com/g/collect...ics.com/g/collect
  • https://www.google-analytics.com/g/collect...ics.com/g/collect
  • https://www.google-analytics.com/g/collect...ics.com/g/collect
  • https://www.google.com/recaptcha/api2/anchor...ptcha/api2/anchor
  • https://www.google.com/recaptcha/api2/anchor...ptcha/api2/anchor
  • https://www.google.com/recaptcha/api2/anchor...ptcha/api2/anchor
  • https://unpkg.com/web-vitals@4.2.4/dist/web-vitals.iife.js
  • https://www.google-analytics.com/g/collect...ics.com/g/collect
  • https://www.google-analytics.com/g/collect...ics.com/g/collect
  • https://www.google-analytics.com/g/collect...ics.com/g/collect
  • https://www.gstatic.com/recaptcha/releases/lqsTZ5beIbCkK4uGEGv9JmUR/styles__ltr.css
  • https://www.gstatic.com/recaptcha/releases/lqsTZ5beIbCkK4uGEGv9JmUR/styles__ltr.css
  • https://www.gstatic.com/recaptcha/releases/lqsTZ5beIbCkK4uGEGv9JmUR/recaptcha__en.js
  • https://www.gstatic.com/recaptcha/releases/lqsTZ5beIbCkK4uGEGv9JmUR/recaptcha__en.js
  • https://ui.adsabs.harvard.edu/libs/sprintf.js?v=v1.5.7-hotfix4
  • https://code.jquery.com/ui/1.12.1/jquery-ui.min.js?v=v1.5.7-hotfix4
  • https://www.google.com/js/bg/9J_OlxnAizjMJN_fZ8JRYj0PV4Me2EAx1CVcnywh2Sk.js
  • https://www.google.com/js/bg/9J_OlxnAizjMJN_fZ8JRYj0PV4Me2EAx1CVcnywh2Sk.js
  • https://www.gstatic.com/recaptcha/api2/logo_48.png
  • https://www.gstatic.com/recaptcha/api2/logo_48.png
  • https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxK.woff2
  • https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxK.woff2
  • https://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc4.woff2
  • https://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc4.woff2
  • https://ui.adsabs.harvard.edu/styles/img/transparent_logo.svg
  • https://ui.adsabs.harvard.edu/styles/img/orcid-inactive.svg
  • https://ui.adsabs.harvard.edu/styles/img/smithsonian-logo.svg
  • https://ui.adsabs.harvard.edu/styles/img/cfa.png
  • https://ui.adsabs.harvard.edu/styles/img/nasa-partner.svg
  • https://ui.adsabs.harvard.edu/libs/fontawesome/fonts/fontawesome-webfont.woff2?v=4.7.0
  • https://ui.adsabs.harvard.edu/js/widgets/sort/widget.jsx.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/widget.jsx.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/widgets/export/widget.jsx.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/wraps/author_network.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/wraps/paper_network.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/styles/img/reads_vs_time.png
  • https://ui.adsabs.harvard.edu/styles/img/citations_vs_time.png
  • https://ui.adsabs.harvard.edu/styles/img/reads_vs_citations.png
  • https://ui.adsabs.harvard.edu/js/widgets/orcid-selector/widget.jsx.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/index.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/styles/css/images/ui-bg_flat_75_ffffff_40x100.png
  • https://ui.adsabs.harvard.edu/js/widgets/sort/redux/configure-store.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/widgets/sort/redux/modules/sort-app.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/widgets/sort/containers/sort-container.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/widgets/orcid-selector/redux/configure-store.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/widgets/orcid-selector/redux/modules/orcid-sele...d-selector-app.js
  • https://ui.adsabs.harvard.edu/js/widgets/orcid-selector/containers/orcid-selecto...ctor-container.js
  • https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/containers/App....ainers/App.jsx.js
  • https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/constants/actio...ts/actionNames.js
  • https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/actions/index.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/reducers/index.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/widgets/export/reducers/index.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/widgets/export/actions/index.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/widgets/export/containers/App.jsx.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/wraps/templates/paper-network-data.html?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/wraps/templates/paper-network-container.html?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/wraps/templates/paper-network-link-data.html?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/components/App.jsx.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/react/WithBackboneView.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/react/configureStore.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/actions.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/middleware.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/reducer.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/react/shared/helpers.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/react/shared/middleware/api.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/widgets/sort/components/sort-app.jsx.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/widgets/orcid-selector/components/orcid-selecto...lector-app.jsx.js
  • https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/components/Expo...matControl.jsx.js
  • https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/components/Sele...ionButtons.jsx.js
  • https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/components/Row....onents/Row.jsx.js
  • https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/components/Mess...ts/Message.jsx.js
  • https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/components/Load...ts/Loading.jsx.js
  • https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/components/Clos...nts/Closer.jsx.js
  • https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/models/authorAf...horAffiliation.js
  • https://ui.adsabs.harvard.edu/js/widgets/export/components/Closer.jsx.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/widgets/export/components/Setup.jsx.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/widgets/export/components/Export.jsx.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/components/CollapsePanel.js...lapsePanel.jsx.js
  • https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/containers/SaveQueryForm.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/components/Last...iveDateRow.jsx.js
  • https://ui.adsabs.harvard.edu/js/widgets/author_affiliation_tool/components/Affi...liationRow.jsx.js
  • https://ui.adsabs.harvard.edu/js/widgets/export/components/ClipboardBtn.jsx.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/components/SaveQueryForm.js...eQueryForm.jsx.js
  • https://ui.adsabs.harvard.edu/js/react/MyAdsFreeform/constants.js?v=v1.5.7-hotfix4
  • https://ui.adsabs.harvard.edu/favicon-32x32.png
  • https://o1060269.ingest.us.sentry.io/api/4507341192036352/envelope/...2036352/envelope/
  • https://o1060269.ingest.us.sentry.io/api/4507341192036352/envelope/...2036352/envelope/
  • https://www.google-analytics.com/g/collect...ics.com/g/collect
  • https://www.google-analytics.com/g/collect...ics.com/g/collect
  • https://www.google-analytics.com/g/collect...ics.com/g/collect
  • https://www.google-analytics.com/g/collect...ics.com/g/collect
  • https://www.google-analytics.com/g/collect...ics.com/g/collect
  • https://www.google-analytics.com/g/collect...ics.com/g/collect
  • https://www.google-analytics.com/g/collect...ics.com/g/collect
  • https://www.google-analytics.com/g/collect...ics.com/g/collect
  • https://www.google-analytics.com/g/collect...ics.com/g/collect
  • Privacy advice (73)

    TitleAdviceScore
    Use a good Content-Security-Policy header to make sure you you avoid Cross Site Scripting (XSS) attacks. (contentSecurityPolicyHeader)Set a Content-Security-Policy header to make sure you are not open for Cross Site Scripting (XSS) attacks. You can start with setting a Content-Security-Policy-Report-Only header, that will only report the violation, not stop the download.0
    Description: Content Security Policy is delivered via a HTTP response header, and defines approved sources of content that the browser may load. It can be an effective countermeasure to Cross Site Scripting (XSS) attacks and is also widely supported and usually easily deployed. https://scotthelme.co.uk/content-security-policy-an-introduction/.
    Offenders:
  • https://ui.adsabs.harvard.edu/search/q=author%3A%22%5EPenrose%22&sort=date%20des...bcode%20desc&p_=0
  • Avoid using Google reCAPTCHA (googleReCaptcha)You share your user data with Google since you use Google reCAPTCHA.0
    Description: You should avoid using Google reCAPTCHA since it will share your users information with Google.
    Offenders:
  • https://www.google.com/recaptcha/api.js?render=6LcpTuUnAAAAAD6YCBdr_2-0b1AH8N6nXkYEG5G5
  • Set a referrer-policy header to make sure you do not leak user information. (referrerPolicyHeader)Set a referrer-policy header to make sure you do not leak user information.0
    Description: Referrer Policy is a new header that allows a site to control how much information the browser includes with navigations away from a document and should be set by all sites. https://scotthelme.co.uk/a-new-security-header-referrer-policy/.
    Offenders:
  • https://ui.adsabs.harvard.edu/search/q=author%3A%22%5EPenrose%22&sort=date%20des...bcode%20desc&p_=0
  • Do not share user data with third parties. (thirdPartyPrivacy)The page has 41% requests that are 3rd party (55 requests with a size of 1.4 MB). The page also have request to companies that harvest data from users and do not respect users privacy (see https://en.wikipedia.org/wiki/Surveillance_capitalism). The page do 7 utility requests and uses 2 utility tools. The page do 17 survelliance requests and uses 5 survelliance tools. The page do 2 tag-manager requests and uses 1 tag-manager tool. The page do 6 analytics requests and uses 1 analytics tool.0
    Description: Using third party requests shares user information with that third party. Please avoid that! The project https://github.com/patrickhulce/third-party-web is used to categorize first/third party requests.
    Offenders:
  • https://www.google.com/recaptcha/api.js?render=6LcpTuUnAAAAAD6YCBdr_2-0b1AH8N6nXkYEG5G5
  • https://js.sentry-cdn.com/46062cbe0aeb7a3b2bb4c3a9b8cd1ac7.min.js
  • https://www.gstatic.com/recaptcha/releases/lqsTZ5beIbCkK4uGEGv9JmUR/recaptcha__en.js
  • https://www.googletagmanager.com/gtm.js?id=GTM-NT2453N
  • https://browser.sentry-cdn.com/7.119.2/bundle.tracing.replay.min.js
  • https://cdn.jsdelivr.net/npm/regenerator-runtime@0.13.9/runtime.js?v=v1.5.7-hotfix4
  • https://cdn.jsdelivr.net/npm/lodash@2.4.2/dist/lodash.compat.min.js?v=v1.5.7-hotfix4
  • https://cdn.jsdelivr.net/npm/jquery@2.2.4/dist/jquery.min.js?v=v1.5.7-hotfix4
  • https://cdn.jsdelivr.net/npm/d3@3.5.17/d3.min.js?v=v1.5.7-hotfix4
  • https://www.googletagmanager.com/gtag/js?id=G-X07MS2584V&l=dataLayer&cx=c
  • https://unpkg.com/web-vitals/dist/web-vitals.iife.js
  • https://www.google-analytics.com/g/collect...ics.com/g/collect
  • https://www.google-analytics.com/g/collect...ics.com/g/collect
  • https://www.google.com/recaptcha/api2/anchor...ptcha/api2/anchor
  • https://unpkg.com/web-vitals@4.2.4/dist/web-vitals.iife.js
  • https://cdn.jsdelivr.net/npm/backbone@1.1.2/backbone-min.js?v=v1.5.7-hotfix4
  • https://cdn.jsdelivr.net/npm/d3-cloud@1.2.5/build/d3.layout.cloud.js?v=v1.5.7-hotfix4
  • https://www.google-analytics.com/g/collect...ics.com/g/collect
  • https://cdn.jsdelivr.net/npm/backbone-validation@0.11.3/dist/backbone-validation...dation-amd-min.js
  • https://www.gstatic.com/recaptcha/releases/lqsTZ5beIbCkK4uGEGv9JmUR/styles__ltr.css
  • https://www.gstatic.com/recaptcha/releases/lqsTZ5beIbCkK4uGEGv9JmUR/recaptcha__en.js
  • https://cdn.jsdelivr.net/npm/react@16/umd/react.production.min.js?v=v1.5.7-hotfix4
  • https://cdn.jsdelivr.net/npm/jsonpath@0.2.12/jsonpath.min.js?v=v1.5.7-hotfix4
  • https://cdn.jsdelivr.net/npm/hotkeys-js@3.8.7/dist/hotkeys.min.js?v=v1.5.7-hotfix4
  • https://cdn.jsdelivr.net/npm/react-dom@17.0.2/umd/react-dom.production.min.js?v=v1.5.7-hotfix4
  • https://cdn.jsdelivr.net/npm/react-redux@7.2.4/dist/react-redux.min.js?v=v1.5.7-hotfix4
  • https://cdn.jsdelivr.net/npm/prop-types@15.6/prop-types.min.js?v=v1.5.7-hotfix4
  • https://cdn.jsdelivr.net/npm/redux@4.0.5/dist/redux.min.js?v=v1.5.7-hotfix4
  • https://cdn.jsdelivr.net/npm/redux-thunk@2.3.0/dist/redux-thunk.min.js?v=v1.5.7-hotfix4
  • https://cdn.jsdelivr.net/npm/moment@2.22.2/min/moment.min.js?v=v1.5.7-hotfix4
  • https://cdn.jsdelivr.net/npm/backbone.marionette@2.4.5/lib/backbone.marionette.m...marionette.min.js
  • https://cdn.jsdelivr.net/npm/persist-js@0.3.1/persist-min.js?v=v1.5.7-hotfix4
  • https://code.jquery.com/ui/1.12.1/jquery-ui.min.js?v=v1.5.7-hotfix4
  • https://cdn.jsdelivr.net/npm/bootstrap@3.3.7/dist/js/bootstrap.min.js?v=v1.5.7-hotfix4
  • https://www.google.com/js/bg/9J_OlxnAizjMJN_fZ8JRYj0PV4Me2EAx1CVcnywh2Sk.js
  • https://www.gstatic.com/recaptcha/api2/logo_48.png
  • https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxK.woff2
  • https://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmEU9fBBc4.woff2
  • https://cdn.jsdelivr.net/npm/bowser@2.11.0/es5.js?v=v1.5.7-hotfix4
  • https://cdn.jsdelivr.net/npm/select2@4.0.3/dist/js/select2.min.js?v=v1.5.7-hotfix4
  • https://cdn.jsdelivr.net/npm/clipboard@1.7.1/dist/clipboard.min.js?v=v1.5.7-hotfix4
  • https://cdn.jsdelivr.net/npm/mathjax@2.7.4/MathJax.js...@2.7.4/MathJax.js
  • https://cdn.jsdelivr.net/npm/mathjax@2.7.4/config/TeX-AMS_HTML.js?V=2.7.4
  • https://cdn.jsdelivr.net/npm/file-saver@1.3.8/FileSaver.min.js?v=v1.5.7-hotfix4
  • https://cdn.jsdelivr.net/npm/react-bootstrap@0.33.0/dist/react-bootstrap.min.js?v=v1.5.7-hotfix4
  • https://o1060269.ingest.us.sentry.io/api/4507341192036352/envelope/...2036352/envelope/
  • https://cdn.jsdelivr.net/npm/mathjax@2.7.4/jax/output/HTML-CSS/jax.js?V=2.7.4
  • https://cdn.jsdelivr.net/npm/mathjax@2.7.4/jax/output/HTML-CSS/fonts/TeX/fontdata.js?V=2.7.4
  • https://cdn.jsdelivr.net/npm/mathjax@2.7.4/fonts/HTML-CSS/TeX/woff/MathJax_Main-Regular.woff?V=2.7.4
  • https://cdn.jsdelivr.net/npm/mathjax@2.7.4/fonts/HTML-CSS/TeX/woff/MathJax_Math-Italic.woff?V=2.7.4
  • https://cdn.jsdelivr.net/npm/mathjax@2.7.4/fonts/HTML-CSS/TeX/woff/MathJax_Size1...ize1-Regular.woff
  • https://o1060269.ingest.us.sentry.io/api/4507341192036352/envelope/...2036352/envelope/
  • https://www.google-analytics.com/g/collect...ics.com/g/collect
  • https://www.google-analytics.com/g/collect...ics.com/g/collect
  • https://www.google-analytics.com/g/collect...ics.com/g/collect
  • Page info

    Page info
    Titleauthor:"^Penrose" - Astrophysics Data System
    Width1350
    Height3203
    DOM elements2401
    Avg DOM depth22
    Max DOM depth33
    Iframes2
    Script tags95
    Local storage662 B
    Session storage146 B
    Network Information API4g

    Technologies used to build the page.

    Data collected using Wappalyzerversion 6.10.66.  Use --browsertime.firefox.includeResponseBodies htmlor --browsertime.chrome.includeResponseBodies htmlto help Wappalyser find more information about technologies used.

    TechnologyConfidenceCategory
    Envoy 100  Reverse proxies
    Google Cloud 100  IaaS
    Fly.io 100  PaaS
    reCAPTCHA 100  Security
    HSTS 100  Security
    Google Cloud CDN 100  CDN
    Cloudflare 100  CDN
    HTTP/3 100  Miscellaneous

    Data collected using Third Party Web 0.24.0

    Utility
    Other Google APIs/SDKs
    Sentry
    Survelliance
    Other Google APIs/SDKs
    Google CDN
    Google Tag Manager
    Google Analytics
    Google Fonts
    Cdn
    Google CDN
    JSDelivr CDN
    Unpkg
    jQuery CDN
    Google Fonts
    Tag-manager
    Google Tag Manager
    Analytics
    Google Analytics
    | Browser metrics | Visual Metrics | Largest Contentful Paint | Cumulative Layout Shift | Long Aninimation Frames | 

    Data from run 2

    Visual Metrics

    Browser Metrics

    Google Web Vitals
    Time to first byte (TTFB)425 ms
    First Contentful Paint (FCP)947 ms
    Largest Contentful Paint (LCP)2.877 s
    Cumulative Layout Shift (CLS)0.65
    Total Blocking Time (TBT)461 ms
    First Contentful Paint info
    Elements that needed recalculate style before FCP16
    Time spent in recalculate style before FCP3.045 ms
    Extra timings
    TTFB425 ms
    First Paint947 ms
    Load Event End3.627 s
    Fully loaded10.535 s
    User Timing marks
    sentry-tracing-init1.379 s

    Largest Contentful Paint

    When in time the page main content is rendered (collected using the Largest Contentful Paint API). Read more about Largest Contentful Paint.

    Element typeP
    Element/tag<p></p>
    Render time 2.877 s
    Elements that needed recalculate style before LCP192
    Time spent in recalculate style before LCP14.42 ms
    Load time0 ms
    Size (width*height)24565
    DOM path
    div#app-container > div#body-template-container > div > div#footer-container > div > div > footer > div > div:eq(0) > div:eq(0) > p:eq(1)> div#app-container > div#body-template-container > div > div#footer-container > div > div > footer > div > div:eq(0) > div:eq(0) > p:eq(1)>
    LCP

    The largest contentful paint is highlighted in the image. If no element is highlighted the element was removed before the screenshot or the LCP API couldn't find the element.

    Detected Cumulative Layout Shift

    0.64662 cumulative layout shift collected from the Cumulative Layout Shift API.

    These HTML elements contribute most to the Cumulative Layout Shifts of the page. The higher score, the more layout shift.

    ScoreHTML Element
    0.46226<div id="footer-container"></div>,<div id="darkSwitch" class="darkmode-toggle" title="Turn on dark mode"></div>
    body > div#app-container > div#body-template-container > div > div#footer-container,body > div#darkSwitch
    0.08359<div id="content-container"></div>
    body > div#app-container > div#body-template-container > div > div#content-container
    0.07853<div id="footer-container"></div>
    body > div#app-container > div#body-template-container > div > div#footer-container
    0.00854<div class="facet__pagination-container"></div>,<div class="facet__container"></div>,<div class="facet__container"></div>,<div class="facet__container"></div>,<div class="facet__container"></div>
    body > div#app-container > div#body-template-container > div > div#content-container > div > div > div#results-page-layout > div:eq(3) > div#dynamic-page-body > div > div > div#results-left-column > div > div:eq(0) > div > div > div > div:eq(1) > div:eq(1),body > div#app-container > div#body-template-container > div > div#content-container > div > div > div#results-page-layout > div:eq(3) > div#dynamic-page-body > div > div > div#results-left-column > div > div:eq(1) > div > div,body > div#app-container > div#body-template-container > div > div#content-container > div > div > div#results-page-layout > div:eq(3) > div#dynamic-page-body > div > div > div#results-left-column > div > div:eq(2) > div > div,body > div#app-container > div#body-template-container > div > div#content-container > div > div > div#results-page-layout > div:eq(3) > div#dynamic-page-body > div > div > div#results-left-column > div > div:eq(3) > div > div,body > div#app-container > div#body-template-container > div > div#content-container > div > div > div#results-page-layout > div:eq(3) > div#dynamic-page-body > div > div > div#results-left-column > div > div:eq(4) > div > div
    0.00792<div class="__footer_brand"></div>,<div class="__footer_list"></div>,<div class="__footer_list"></div>,
    body > div#app-container > div#body-template-container > div > div#footer-container > div > div > footer > div > div:eq(0),body > div#app-container > div#body-template-container > div > div#footer-container > div > div > footer > div > div:eq(1),body > div#app-container > div#body-template-container > div > div#footer-container > div > div > footer > div > div:eq(3),body > div#app-container > div#body-template-container > div > div#footer-container > div > div > footer > div > div:eq(2) > ul > li:eq(1) > a > #text:eq(1)
    0.00309<div class="facet__container"></div>,<div class="facet__container"></div>,<div class="facet__container"></div>,<div class="facet__container"></div>,<div class="facet__container"></div>
    body > div#app-container > div#body-template-container > div > div#content-container > div > div > div#results-page-layout > div:eq(3) > div#dynamic-page-body > div > div > div#results-left-column > div > div:eq(5) > div > div,body > div#app-container > div#body-template-container > div > div#content-container > div > div > div#results-page-layout > div:eq(3) > div#dynamic-page-body > div > div > div#results-left-column > div > div:eq(1) > div > div,body > div#app-container > div#body-template-container > div > div#content-container > div > div > div#results-page-layout > div:eq(3) > div#dynamic-page-body > div > div > div#results-left-column > div > div:eq(2) > div > div,body > div#app-container > div#body-template-container > div > div#content-container > div > div > div#results-page-layout > div:eq(3) > div#dynamic-page-body > div > div > div#results-left-column > div > div:eq(3) > div > div,body > div#app-container > div#body-template-container > div > div#content-container > div > div > div#results-page-layout > div:eq(3) > div#dynamic-page-body > div > div > div#results-left-column > div > div:eq(4) > div > div
    0.00151
    0.00119<div class="logo1"></div>,<div class="logo3"></div>,<div class="__footer_brand_disclaimer"></div>
    body > div#app-container > div#body-template-container > div > div#footer-container > div > div > footer > div > div:eq(0) > div:eq(1) > div:eq(0),body > div#app-container > div#body-template-container > div > div#footer-container > div > div > footer > div > div:eq(0) > div:eq(1) > div:eq(2),body > div#app-container > div#body-template-container > div > div#footer-container > div > div > footer > div > div:eq(0) > div:eq(2)
    Layout shift

    The elements that have shifted place is highlighted in the image (that have a higher value than 0.01). If the element shifted outside of the viewport, you will not see it there. It can be hard to understand what content that has shifted, if that's the case, checkout the video or the filmstrip of the run.

    Long Animation Frames

    Read more about the Long Animation Frames API here here.

    The top 10 longest animation frames entries

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    205 ms253.3 ms4.7 ms2.3 ms2.4 ms
    https://browser.sentry-cdn.com/7.119.2/bundle.tracing.replay.min.js

    Forced Style And Layout Duration: 62 ms

    Invoker:  TimerHandler:setTimeout
    Invoker Type: user-callback
    Source Function Name:  sentryWrapped
    Window attribution: self
    Source char position: 199601

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    193 ms249.3 ms5.7 ms2.7 ms3 ms
    https://browser.sentry-cdn.com/7.119.2/bundle.tracing.replay.min.js

    Forced Style And Layout Duration: 104 ms

    Invoker:  XMLHttpRequest.onload
    Invoker Type: event-listener
    Source Function Name:  sentryWrapped
    Window attribution: self
    Source char position: 199601

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    50 ms106.3 ms2.7 ms2.1 ms0.6 ms
    https://browser.sentry-cdn.com/7.119.2/bundle.tracing.replay.min.js

    Forced Style And Layout Duration: 43 ms

    Invoker:  SCRIPT[src=./js/react/MyAdsFreeform/constants.js?v=v1.5.7-hotfix4].onload
    Invoker Type: event-listener
    Source Function Name:  sentryWrapped
    Window attribution: self
    Source char position: 199601

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    32 ms91.8 ms4.2 ms2 ms2.2 ms
    https://cdn.jsdelivr.net/npm/mathjax@2.7.4/jax/output/HTML-CSS/fonts/TeX/fontdata.js?V=2.7.4

    Forced Style And Layout Duration: 68 ms

    Invoker:  https://cdn.jsdelivr.net/npm/mathjax@2.7.4/jax/output/HTML-CSS/fonts/TeX/fontdata.js?V=2.7.4
    Invoker Type: classic-script
    Window attribution: self

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    0 ms512.9 ms6.1 ms0 ms6.1 ms
    No availible script information.
    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    0 ms51.3 ms-0.3 ms0 ms-0.3 ms
    https://www.googletagmanager.com/gtag/js?id=G-X07MS2584V&l=dataLayer&cx=c

    Invoker:  https://www.googletagmanager.com/gtag/js?id=G-X07MS2584V&l=dataLayer&cx=c
    Invoker Type: classic-script
    Window attribution: self

    Blocking duration Work durationRender durationPreLayout DurationStyle And Layout Duration
    0 ms53.7 ms0.3 ms0.4 ms-0.1 ms
    https://ui.adsabs.harvard.edu/libs/require.js

    Forced Style And Layout Duration: 10 ms

    Invoker:  TimerHandler:setTimeout
    Invoker Type: user-callback
    Window attribution: self
    Source char position: 46764

    Server timings

    There are no Server Timings.

    Custom metrics collected through JavaScript

    There are no custom configured scripts.

    Extra metrics collected using scripting

    There are no custom extra metrics from scripting.

    | Summary  | Largest responses  | Requests and sizes per content type  | Data per domain | Expires and last modified statistics  | Requests loaded after onLoad event  | Render blocking requests  | 

    PageXray

    How the page is built.

    Summary
    HTTP versionHTTP/2.0
    Total requests135
    Total domains12
    Total transfer size3.3 MB
    Total content size5.6 MB
    Responses missing compression75
    Number of cookies8
    Third party cookies0
    Requests per response code
    200128
    2046
    3021

    Largest assets on the page (by transfer size)

    Requests and sizes per content type

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b44.4 KB62.4 KB5
    css0 b382.6 KB417.9 KB2
    javascript0 b2.5 MB4.7 MB94
    image0 b81.6 KB81.0 KB7
    font0 b164.9 KB163.4 KB6
    plain0 b781 B0 b6
    json0 b126.3 KB120.7 KB10
    svg0 b24.6 KB24.2 KB4
    Total0 b3.3 MB5.6 MB134

    Data per domain

    DomainTotal download timeTransfer SizeContent SizeRequests
    ui.adsabs.harvard.edu10.922 s2.0 MB1.9 MB80
    www.google.com910 ms40.8 KB69.7 KB3
    js.sentry-cdn.com580 ms2.5 KB2.8 KB1
    www.gstatic.com1.995 s476.0 KB1.1 MB4
    www.googletagmanager.com708 ms181.2 KB536.6 KB2
    browser.sentry-cdn.com506 ms71.4 KB223.3 KB1
    cdn.jsdelivr.net6.353 s508.3 KB1.4 MB31
    unpkg.com569 ms3.5 KB7.1 KB2
    www.google-analytics.com1.110 s781 B0 b6
    code.jquery.com614 ms66.5 KB247.7 KB1
    fonts.gstatic.com810 ms30.8 KB30.2 KB2
    o1060269.ingest.us.sentry.io621 ms433 B82 B2

    Expires and last modified statistics

    typeminmedianmax
    Expires0 seconds1 day1 year
    Last modified1 week13 weeks33 years

    Requests loaded after onLoad event

    Included requests done after load event end.

    ContentTransfer SizeRequests
    html0 b0
    css0 b0
    javascript39.3 KB2
    image1.6 KB1
    font58.7 KB3
    json122.5 KB7
    plain187 B3
    Total222.2 KB16

    Requests loaded after onContentLoad

    Includes requests done after DOM content loaded.

    ContentTransfer SizeRequests
    html36.2 KB4
    css41.7 KB1
    javascript2.1 MB88
    image81.6 KB7
    font164.9 KB6
    plain781 B6
    json126.3 KB10
    svg24.6 KB4
    Total2.6 MB127

    Render blocking requests

    Render blocking information directly from Chrome.

    BlockingIn body parser blockingPotentially blocking
    410

    Render information

    URLType
    https://ui.adsabs.ha...ch-page.bundle.jsnon_blocking
    https://ui.adsabs.ha...ig/main.bundle.jsnon_blocking
    https://ui.adsabs.ha...es/css/styles.cssnon_blocking
    https://www.gstatic..../recaptcha__en.jsblocking
    https://www.gstatic..../recaptcha__en.jsblocking
    https://www.googleta...nager.com/gtag/jsnon_blocking
    https://www.googleta...anager.com/gtm.jsnon_blocking
    https://ui.adsabs.ha...ome-webfont.woff2non_blocking
    https://browser.sent...ing.replay.min.jsnon_blocking
    https://ui.adsabs.ha...u/libs/require.jsnon_blocking
    https://code.jquery..../jquery-ui.min.jsnon_blocking
    https://cdn.jsdelivr...g/TeX-AMS_HTML.jsnon_blocking
    https://cdn.jsdelivr...@3.5.17/d3.min.jsnon_blocking
    https://cdn.jsdelivr...-bootstrap.min.jsnon_blocking
    https://www.gstatic....R/styles__ltr.cssblocking
    https://cdn.jsdelivr...production.min.jsnon_blocking
    https://cdn.jsdelivr...Main-Regular.woffnon_blocking
    https://cdn.jsdelivr...ist/jquery.min.jsnon_blocking
    https://cdn.jsdelivr...2/jsonpath.min.jsnon_blocking
    https://cdn.jsdelivr...t/HTML-CSS/jax.jsnon_blocking
    https://ui.adsabs.ha.../libs/polyfill.jsnon_blocking
    https://cdn.jsdelivr...@2.7.4/MathJax.jsnon_blocking
    https://cdn.jsdelivr...js/select2.min.jsnon_blocking
    https://cdn.jsdelivr..._Math-Italic.woffnon_blocking
    https://cdn.jsdelivr...min/moment.min.jsnon_blocking
    https://ui.adsabs.ha...ig/main.config.jsnon_blocking
    https://ui.adsabs.ha...ch-page.config.jsnon_blocking
    https://fonts.gstati...92Fr1Mu4mxK.woff2non_blocking
    https://fonts.gstati...1MmEU9fBBc4.woff2non_blocking
    https://cdn.jsdelivr...s/TeX/fontdata.jsnon_blocking
    https://cdn.jsdelivr...ash.compat.min.jsnon_blocking
    https://ui.adsabs.ha.../paper_network.jsnon_blocking
    https://cdn.jsdelivr...marionette.min.jsnon_blocking
    https://cdn.jsdelivr.../bootstrap.min.jsnon_blocking
    https://www.google.c...EAx1CVcnywh2Sk.jsnon_blocking
    https://cdn.jsdelivr...0.13.9/runtime.jsnon_blocking
    https://ui.adsabs.ha...ainers/App.jsx.jsnon_blocking
    https://ui.adsabs.ha...ainers/App.jsx.jsnon_blocking
    https://ui.adsabs.ha.../actions/index.jsnon_blocking
    https://cdn.jsdelivr...2/backbone-min.jsnon_blocking
    https://ui.adsabs.ha...reducers/index.jsnon_blocking
    https://ui.adsabs.ha.../actions/index.jsnon_blocking
    https://cdn.jsdelivr...ize1-Regular.woffnon_blocking
    https://cdn.jsdelivr...ser@2.11.0/es5.jsnon_blocking
    https://cdn.jsdelivr...eact-redux.min.jsnon_blocking
    https://ui.adsabs.ha...eQueryForm.jsx.jsnon_blocking
    https://ui.adsabs.ha...onents/App.jsx.jsnon_blocking
    https://cdn.jsdelivr...production.min.jsnon_blocking
    https://ui.adsabs.ha...lector-app.jsx.jsnon_blocking
    https://cdn.jsdelivr...3.layout.cloud.jsnon_blocking
    https://ui.adsabs.ha...ort/widget.jsx.jsnon_blocking
    https://ui.adsabs.ha...orm/middleware.jsnon_blocking
    https://ui.adsabs.ha...ents/Setup.jsx.jsnon_blocking
    https://ui.adsabs.ha...lapsePanel.jsx.jsnon_blocking
    https://ui.adsabs.ha...eeform/reducer.jsnon_blocking
    https://cdn.jsdelivr.../clipboard.min.jsnon_blocking
    https://ui.adsabs.ha...u/libs/sprintf.jsnon_blocking
    https://ui.adsabs.ha...shared/helpers.jsnon_blocking
    https://cdn.jsdelivr....1/persist-min.jsnon_blocking
    https://ui.adsabs.ha...reducers/index.jsnon_blocking
    https://unpkg.com/we...eb-vitals.iife.jsnon_blocking
    https://cdn.jsdelivr...dation-amd-min.jsnon_blocking
    https://ui.adsabs.ha...dules/sort-app.jsnon_blocking
    https://ui.adsabs.ha...ipboardBtn.jsx.jsnon_blocking
    https://ui.adsabs.ha...ool/widget.jsx.jsnon_blocking
    https://ui.adsabs.ha...horAffiliation.jsnon_blocking
    https://cdn.jsdelivr...st/hotkeys.min.jsnon_blocking
    https://ui.adsabs.ha...du/config/shim.jsnon_blocking
    https://cdn.jsdelivr...dist/redux.min.jsnon_blocking
    https://js.sentry-cd...a9b8cd1ac7.min.jsin_body_parser_blocking
    https://ui.adsabs.ha...middleware/api.jsnon_blocking
    https://ui.adsabs.ha...eeform/actions.jsnon_blocking
    https://ui.adsabs.ha...d-selector-app.jsnon_blocking
    https://ui.adsabs.ha...discovery.vars.jsnon_blocking
    https://ui.adsabs.ha...ort/widget.jsx.jsnon_blocking
    https://www.google.c.../recaptcha/api.jsblocking
    https://cdn.jsdelivr.../FileSaver.min.jsnon_blocking
    https://ui.adsabs.ha...s/sort-app.jsx.jsnon_blocking
    https://ui.adsabs.ha...nts/Export.jsx.jsnon_blocking
    https://ui.adsabs.ha...tor/widget.jsx.jsnon_blocking
    https://ui.adsabs.ha...onents/Row.jsx.jsnon_blocking
    https://cdn.jsdelivr...prop-types.min.jsnon_blocking
    https://ui.adsabs.ha...author_network.jsnon_blocking
    https://ui.adsabs.ha...thBackboneView.jsnon_blocking
    https://ui.adsabs.ha...Freeform/index.jsnon_blocking
    https://ui.adsabs.ha...ts/Loading.jsx.jsnon_blocking
    https://ui.adsabs.ha...nts/Closer.jsx.jsnon_blocking
    https://cdn.jsdelivr...edux-thunk.min.jsnon_blocking
    https://ui.adsabs.ha...liationRow.jsx.jsnon_blocking
    https://ui.adsabs.ha...nts/Closer.jsx.jsnon_blocking
    https://ui.adsabs.ha.../SaveQueryForm.jsnon_blocking
    https://ui.adsabs.ha...ctor-container.jsnon_blocking
    https://ui.adsabs.ha...ionButtons.jsx.jsnon_blocking
    https://ui.adsabs.ha...matControl.jsx.jsnon_blocking
    https://ui.adsabs.ha...ts/actionNames.jsnon_blocking
    https://ui.adsabs.ha...sort-container.jsnon_blocking
    https://ui.adsabs.ha...iveDateRow.jsx.jsnon_blocking
    https://ui.adsabs.ha...onfigure-store.jsnon_blocking
    https://ui.adsabs.ha...onfigure-store.jsnon_blocking
    https://ui.adsabs.ha...configureStore.jsnon_blocking
    https://ui.adsabs.ha...ts/Message.jsx.jsnon_blocking
    https://ui.adsabs.ha...form/constants.jsnon_blocking
    https://unpkg.com/we...eb-vitals.iife.jsnon_blocking
    CPU Long Tasks | CPU Time Spent | CPU Time Spent Per Request | CPU Time Per Tool/Domain | 

    CPU

    Download the Chrome trace log and drag and drop it into Developer Tools / Performance in Chrome.

    Long Tasks

    Collected using the Long Task API. A long task is a task that take 50 milliseconds or more.

    TypeQuantityTotal duration (ms)
    Total Blocking Time 461
    Max Potential First Input Delay 250
    Long Tasks before First Paint00
    Long Tasks before First Contentful Paint00
    Long Tasks before Largest Contentful Paint00
    Long Tasks after Load Event End3565
    Total Long Tasks4661

    CPU last long task happened at 4.813 s

    Individual Long Tasks

    namestartTimedurationcontainerIdcontainerNamecontainerSrccontainerType
    self352596window
    self3994237window
    self4251250window
    self481378window

    CPU time spent

    Calculated using Tracium.

    Categories (ms)
    parseHTML42
    styleLayout355
    paintCompositeRender23
    scriptParseCompile2
    scriptEvaluation1114
    garbageCollection35
    other202
    Events (ms)
    FunctionCall821
    UpdateLayoutTree263
    v8.run172
    RunTask137
    Layout92
    RunMicrotasks55
    ParseHTML37
    Commit22
    PrePaint18
    Paint16
    v8.callFunction16
    V8.GC_SCAVENGER_SCAVENGE_PARALLEL10

    Time spent per request

    URLCPU time (ms)
    https://browser.sentry-cdn.com/7.119.2/bundle.tracing.replay.min.js1177
    https://cdn.jsdelivr.net/npm/mathjax@2.7.4/jax/output/HTML-CSS/fonts/TeX/fontdata.js?V=2.7.4166
    https://ui.adsabs.harvard.edu/libs/require.js106
    https://www.gstatic.com/recaptcha/releases/lqsTZ5beIbCkK4uGEGv9JmUR/recaptcha__en.js78
    https://js.sentry-cdn.com/46062cbe0aeb7a3b2bb4c3a9b8cd1ac7.min.js47
    https://www.googletagmanager.com/gtag/js?id=G-X07MS2584V&l=dataLayer&cx=c44
    https://www.googletagmanager.com/gtm.js?id=GTM-NT2453N34
    https://cdn.jsdelivr.net/npm/mathjax@2.7.4/config/TeX-AMS_HTML.js?V=2.7.424
    https://www.google.com/recaptcha/api2/anchor?ar=1&k=6LcpTuUnAAAAAD6YCBdr_2-0b1AH8N6nXkYEG5G5&co=aHR0cHM6Ly91aS5hZHNhYnMuaGFydmFyZC5lZHU6NDQz&hl=en&v=lqsTZ5beIbCkK4uGEGv9JmUR&size=invisible&cb=geoy5h1941kx17
    https://cdn.jsdelivr.net/npm/jquery@2.2.4/dist/jquery.min.js?v=v1.5.7-hotfix412
    https://ui.adsabs.harvard.edu/config/main.bundle.js?v=v1.5.7-hotfix411
    https://ui.adsabs.harvard.edu/config/search-page.bundle.js?v=v1.5.7-hotfix410

    CPU time spent

    Tool/domainTime (ms)
    Sentry1224.6
    JSDelivr CDN201.7
    ui.adsabs.harvard.edu127.3
    Google CDN77.9
    Google Tag Manager78.0
    Other Google APIs/SDKs16.8
    | Categories | | Tools | | First vs third | 

    Third party

    Third party requests categorised by Third party web version 0.24.0.

    CategoryRequests
    utility 7
    survelliance 17
    cdn 40
    tag-manager 2
    analytics 6
    CategoryNumber of tools
    utility 2
    survelliance 5
    cdn 5
    tag-manager 1
    analytics 1

    Third party requests and tools

    utility (7 requests)
    Other Google APIs/SDKs
    Sentry
    survelliance (17 requests)
    Other Google APIs/SDKs
    Google CDN
    Google Tag Manager
    Google Analytics
    Google Fonts
    cdn (40 requests)
    Google CDN
    JSDelivr CDN
    Unpkg
    jQuery CDN
    Google Fonts
    tag-manager (2 requests)
    Google Tag Manager
    analytics (6 requests)
    Google Analytics

    First party requests and sizes per content type

    Calculated using .*harvard.* (use --firstParty to configure).

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b13.0 KB12.6 KB4
    css0 b340.9 KB340.5 KB1
    javascript0 b1.3 MB1.3 MB56
    image0 b79.3 KB78.9 KB6
    font0 b75.5 KB75.4 KB1
    json0 b125.9 KB120.6 KB8
    svg0 b24.6 KB24.2 KB4
    TotalN/A2.0 MB1.9 MB80

    Third party requests and sizes per content type

    ContentHeader SizeTransfer SizeContent SizeRequests
    html0 b31.4 KB49.8 KB1
    css0 b41.7 KB77.4 KB1
    javascript0 b1.2 MB3.4 MB38
    image0 b2.3 KB2.2 KB1
    font0 b89.4 KB88.1 KB5
    plain0 b781 B0 b6
    json0 b433 B82 B2
    TotalN/A1.3 MB3.6 MB55